/* keyframes definition for WebKit browsers */

@-webkit-keyframes travel {
    from {
        left: 0;
    }
    to {
        left: 100%;
        margin-left: -50px;
    }
}

@-webkit-keyframes bounce {
    from,
    to {
        bottom: 0;
        -webkit-animation-timing-function: ease-out;
    }
    50% {
        bottom: 120px;
        -webkit-animation-timing-function: ease-in;
    }
}

@-webkit-keyframes spin {
    from {}
    to {
        -webkit-transform: rotateZ(360deg);
    }
}



/* keyframes definition for other browsers */

@keyframes travel {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}

@keyframes bounce {
    from,
    to {
        bottom: 0;
        animation-timing-function: ease-out;
    }
    50% {
        bottom: 120px;
        animation-timing-function: ease-in;
    }
}

@keyframes spin {
    from {
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* styles for the stage and animated elements */

#stage {
    position: relative;
    width: 100%;
    height: 120px;
}

#traveler {
    position: absolute;
    width: 20px;
    height: 100px;

    -webkit-animation-name: travel;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-duration: 2.8s;

    animation-name: travel;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 2.8s;
}

#bouncer {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50px;

    -webkit-animation-name: bounce, spin;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2.2s;

    animation-name: bounce, spin;
    animation-iteration-count: infinite;
    animation-duration: 2.2s;
}



.progress {

    margin: 0 auto;
    width: 100%;

    padding: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
}


.progress-bar {
    background-color: #f63a0f;
    width: 0;
    height: 16px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    transition: 0.4s linear;
    transition-property: width, background-color;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.has-error .help-block-error {

    margin-top: .3em;
    font-size: 0.7em;
    color: #d40451;
}

.c-form__legal--a {
    padding: .5em;
    border: 1px dashed #45296b;
    max-height: 5rem;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    transition: all 1s ease;
    margin-bottom: 1.5rem;
}



.c-bubbles {
    overflow: hidden
}

.navs {
    margin-bottom: -200px;
    height: 200px;
    position: relative;
    z-index: 0;
}

.navs a img {

    height: 3rem;
    margin-top: 7rem;
}

.navs .next {
    float: right;
}

.c-form__legal {
    font-size: 0.7rem;
}

.c-dodaj__form {
    background: #e3f4f5;
}

a.readmore {
    position: absolute;
    left: 50%;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #695388;
    margin-left: -1.75rem;
    margin-top: 4rem;
    font-size: 3rem;
    line-height: 3rem;
    padding: 0.25rem;
    color: #fff;
}

.disabled,
[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}





.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade.in {
    opacity: 1;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.mh {
    font-size: 0.7rem;
    max-height: 63vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    transition: all 1s ease;
}

.fader {

    position: absolute;
    bottom: 5px;
    height: 3rem;
    width: 92%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.fader .readmore {
    margin-top: 1rem;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

.toggled_1:after {
    content: "";

    display: block;

    width: 2rem;

    height: 2rem;

    right: 0;

    position: absolute;

    top: 0;

    background-image: url(../assets/images/ico_bullet-ball.svg);

    background-repeat: no-repeat;

    background-position: center center;

    background-size: cover;
}


.progress-info {position:absolute;}
.progress-info.pull-left {left:0;float: left;margin-top: -1.4em;font-size: 0.7em;font-weight: bold;z-index: 10;margin-left: 1em;}
.progress-info.pull-right {right:0;text-align:right;margin-top: -1.4em;font-size: 0.7em;font-weight: bold;z-index: 10;margin-right: 1em;}

button.w-50{
display: block;
width: auto;
padding-left: 3rem;
padding-right: 3rem;    
margin:auto;
float: none;
}

.c-section__header#filename {margin:1rem 0 !important;}
.c-radio__label:hover {background:#ff1e71;}
.thankyou {padding-top:2.78rem;color:#45296b;font-weight: bold;}


@media (min-width:991px) {

    .c-banner__2nd>p {
        text-align: left;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }
    .modal-dialog {
        width: 600px;
        margin: 3rem auto;
    }

    .c-dodaj__bramka,
    .u-mb {
        margin-bottom: 2.77778rem;
    }
}

@media (max-width:740px) {

    .mh {}
    .c-zasady__item {
        display: none;
    }
    .c-range__item:last-child .c-range__bullet {
        display: inline-block;
        width: 1.11111rem;
        height: 1.11111rem;
        background-color: #45296b;
        border-radius: 100%;
    }


    .c-anim__bramka {
        width: 100%;
    }
    .c-anim__dodaj {
        left: 27.553%;
        top: 0.559%;
        width: 42.69%;
    }
    .c-anim__pilka {
        top: 33%;
    }
}